* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: linear-gradient(135deg, #1d2671, #c33764);
    color: #222;
}

/* Section */
.team-section {
    padding: 90px 10%;
    background: #f8f9fc;
}

/* Header */
.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h1 {
    font-size: 3.2rem;
    color: #1d2671;
    margin-bottom: 8px;
}

.team-header p {
    font-size: 1.1rem;
    color: #555;
    letter-spacing: 1px;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* Card */
.team-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
    border-top: 6px solid #6a11cb;
    position: relative;
}

/* Leader Special */
.team-card.leader {
    border-top: 6px solid #ff9800;
    background: linear-gradient(135deg, #fff7e6, #ffffff);
}

.badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: #ff9800;
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Hover */
.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* Text */
.team-card h2 {
    font-size: 1.6rem;
    color: #1d2671;
    margin-bottom: 6px;
}

.team-card h3 {
    font-size: 0.95rem;
    color: #c33764;
    margin-bottom: 16px;
    font-weight: 600;
}

.team-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 600px) {
    .team-header h1 {
        font-size: 2.4rem;
    }
}
